runtime.g.gcAssistBytes (field)
18 uses
runtime (current package)
malloc.go#L1241: assistG.gcAssistBytes -= int64(size - dataSize)
malloc.go#L1285: assistG.gcAssistBytes -= int64(size)
malloc.go#L1287: if assistG.gcAssistBytes < 0 {
mgc.go#L1610: gp.gcAssistBytes = 0
mgcmark.go#L432: debtBytes := -gp.gcAssistBytes
mgcmark.go#L450: gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(stolen))
mgcmark.go#L453: gp.gcAssistBytes += debtBytes
mgcmark.go#L487: if gp.gcAssistBytes < 0 {
mgcmark.go#L544: gp.gcAssistBytes = 0
mgcmark.go#L579: gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(workDone))
mgcmark.go#L684: if scanBytes+gp.gcAssistBytes >= 0 {
mgcmark.go#L686: scanBytes += gp.gcAssistBytes
mgcmark.go#L687: gp.gcAssistBytes = 0
mgcmark.go#L697: gp.gcAssistBytes += scanBytes
proc.go#L3884: if gcBlackenEnabled != 0 && gp.gcAssistBytes > 0 {
proc.go#L3889: scanCredit := int64(assistWorkPerByte * float64(gp.gcAssistBytes))
proc.go#L3891: gp.gcAssistBytes = 0
runtime2.go#L512: gcAssistBytes int64
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |